func runtime.fastrand
22 uses
runtime (current package)
alg.go#L69: return c1 * (c0 ^ h ^ uintptr(fastrand())) // any kind of NaN
alg.go#L81: return c1 * (c0 ^ h ^ uintptr(fastrand())) // any kind of NaN
map.go#L242: if fastrand()&mask == 0 {
map.go#L296: h.hash0 = fastrand()
map.go#L315: h.hash0 = fastrand()
map.go#L800: h.hash0 = fastrand()
map.go#L850: r = uintptr(fastrand())
map.go#L1035: h.hash0 = fastrand()
map.go#L1609: r := int(fastrand())
map.go#L1672: r := int(fastrand())
map_fast32.go#L351: h.hash0 = fastrand()
map_fast64.go#L353: h.hash0 = fastrand()
map_faststr.go#L379: h.hash0 = fastrand()
mprof.go#L494: if rate <= 0 || (rate > cycles && int64(fastrand())%rate > cycles) {
mprof.go#L558: if rate > 0 && int64(fastrand())%rate == 0 {
proc.go#L3269: for enum := stealOrder.start(fastrand()); !enum.done(); enum.next() {
proc.go#L4554: newg.trackingSeq = uint8(fastrand())
sema.go#L312: s.ticket = fastrand() | 1
stubs.go#L124: func fastrand() uint32 {
stubs.go#L154: return uint32(uint64(fastrand()) * uint64(n) >> 32)
stubs.go#L191: return uint(fastrand())
stubs.go#L206: func os_fastrand() uint32 { return fastrand() }
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |